 alter table "BookScanAppointment" add column "Amount" numeric;
					 
					 
					 alter table "BookScanAppointment" add column "ChargeCategoryId" integer;
					 
			 alter table "BookScanAppointment" add CONSTRAINT "BookScanAppointment_ChargeCategoryId_fkey" FOREIGN KEY ("ChargeCategoryId")
        REFERENCES public."ChargeCategory" ("ChargeCategoryId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION;

INSERT INTO public."PaymentModule"(
	"PaymentModuleId", "Name", "Active")
	VALUES (5, 'ScanAppointment', true);